.products-containerSearch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .products-containerSearch {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-containerSearch {
        grid-template-columns: 1fr;
    }
}





.products-containerSearch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}




.products-containerSearch {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}











.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}

.pagination-wrapper button {
    background: #ddd;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.pagination-wrapper button.active {
    background: #333;
    color: white;
}

.pagination-wrapper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}





.pagination {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.pagination-wrapper {
    display: flex;
    gap: 5px;
}

.pagination button {
    padding: 8px 12px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.pagination button.active {
    background: #0056b3;
}

.pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}